home *** CD-ROM | disk | FTP | other *** search
/ Die Ultimative Software-P…i Collection 1996 & 1997 / Die Ultimative Software-Pakete CD-ROM fur Atari Collection 1996 & 1997.iso / a / a_funk / geograph.tos / GEOGRAPH / SUNCLOCK / GEM.H < prev    next >
Encoding:
C/C++ Source or Header  |  1990-06-06  |  835 b   |  37 lines

  1. #ifndef Gem_first
  2. #define Gem_first
  3.  
  4.  
  5. /*---- Defines ----*/
  6. #define TRUE    (1==1)
  7. #define FALSE   (1!=1)
  8.  
  9. /*---- Typedefs ----*/
  10. typedef char bool;
  11.  
  12. /*---- Enumerations ----*/
  13. /* resolution from GetRez() */
  14. typedef enum { cLowRez, cMedRez, cHighRez } eGetRez;
  15.  
  16. /* index for txt_attrib */
  17. typedef enum {  cTaSet, cTaColor, cTaRot,
  18.                 cTaHor, cTaVer, cTaMode,
  19.                 cTaLWidth, cTaLHeight, cTaBWidth,
  20.                 cTaBHeight }    eTxtAttrib;
  21.  
  22. /*---- General GEM-variables ----*/
  23. extern int handle,
  24.            work_out[57],
  25.            work_in[12],
  26.            pxyarray[10],
  27.            txt_attrib[10];
  28. extern char errorsound[100];
  29.  
  30. /*---- Prototyping ----*/
  31. void GemInit( eGetRez, char* );
  32. void GemExit( void );
  33. void GemAbort( char* );
  34. void GemSound( void );
  35.  
  36. #endif Gem_first 
  37.